home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / texinfo / libtxi / Makefile.in < prev   
Makefile  |  1994-01-28  |  2KB  |  105 lines

  1. # Makefile for GNU texinfo/libtxi.  -*- Indented-Text -*-
  2. # Copyright (C) 1993 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #### Start of system configuration section. ####
  19.  
  20. srcdir = @srcdir@
  21. VPATH = $(srcdir)
  22.  
  23. CC = @CC@
  24. INSTALL = @INSTALL@
  25. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  26. INSTALL_DATA = @INSTALL_DATA@
  27.  
  28. LN    = ln
  29. RM    = rm -f
  30. TAR    = tar
  31. MKDIR    = mkdir
  32. COMPRESS= compress
  33.  
  34. RANLIB = @RANLIB@
  35.  
  36. DEFS = @DEFS@
  37. LIBS = @LIBS@
  38. LOADLIBES = $(LIBS)
  39.  
  40. # Inherited from parent make.
  41. #ALLOCA = @ALLOCA
  42.  
  43. SHELL = /bin/sh
  44.  
  45. CFLAGS = -g
  46. LDFLAGS = -g
  47.  
  48. prefix = /usr/local
  49. exec_prefix = $(prefix)
  50. bindir = $(exec_prefix)/bin
  51. # Prefix for each installed program, normally empty or `g'.
  52. binprefix = 
  53. libdir = $(prefix)/lib
  54. # Prefix for each installed man page, normally empty or `g'.
  55. manprefix = 
  56. mandir = $(prefix)/man/man1
  57. manext = 1
  58. infodir = $(prefix)/info
  59.  
  60. #### End of system configuration section. ####
  61.  
  62. SRCS =  getopt.c getopt.h getopt1.c 
  63. OBJS =  getopt.o getopt1.o $(ALLOCA)
  64.  
  65. PROGS = libtxi.a
  66.  
  67. all: $(PROGS)
  68. sub-all: all
  69.  
  70. .c.o:
  71.     $(CC) -c $(CPPFLAGS) -I. -I$(srcdir) $(DEFS) $(CFLAGS) $<
  72.  
  73. libtxi.a: $(OBJS)
  74.     ar qcv libtxi.a $(OBJS)
  75.     $(RANLIB) libtxi.a
  76.  
  77. getopt.o: getopt.c getopt.h
  78. getopt1.o: getopt1.c getopt.h
  79. alloca.o: alloca.c
  80.  
  81. install:
  82. uninstall:
  83.  
  84. TAGS: $(SRCS)
  85.     etags $(SRCS)
  86.  
  87. clean:
  88.     rm -f *.o a.out core core.* $(PROGS)
  89.  
  90. mostlyclean: clean
  91.  
  92. distclean: clean
  93.     rm -f Makefile config.status
  94.  
  95. realclean: distclean
  96.     rm -f TAGS
  97.  
  98. Makefile: Makefile.in ../config.status
  99.     cd ..; sh config.status
  100.  
  101. # Prevent GNU make v3 from overflowing arg limit on SysV.
  102. .NOEXPORT:
  103.  
  104. # eof
  105.